home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Cerror.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  428 b   |  27 lines

  1. /* Copyright (C) 1992-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __CERROR_H
  7. #define __CERROR_H 1
  8.  
  9. #ifndef __NT__
  10.  
  11. #if __cplusplus
  12. extern "C"
  13.   {
  14. #endif
  15.  
  16. void __cdecl cerror_open (void);
  17. void __cdecl cerror_close (void);
  18. void __cdecl _cerror_handler (unsigned short *ax, unsigned short *di);
  19.  
  20. #if __cplusplus
  21.   }
  22. #endif
  23.  
  24. #endif /* __NT__ */
  25.  
  26. #endif
  27.